home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 July / july_2000.iso / Site Building / port scanner / README.TXT < prev    next >
Encoding:
Text File  |  2000-06-06  |  2.5 KB  |  130 lines

  1.                              Java PortScanner 0.11
  2.                              ---------------------
  3.                      By Matteo Baccan (baccan@infomedia.it)
  4.                       http://www.infomedia.it/artic/Baccan
  5.                      --------------------------------------
  6.  
  7. Java port Scanner is a command line port scanner written in Java 1.3.
  8. I think that this program may also works with all JDK version, you must only
  9. recompile it.
  10.  
  11. I have written this program to allow programmer to have one port scanner to
  12. use in all operating system that use, and not one port scanner for every
  13. system.
  14.  
  15. Use this program in Linux, Windows, AIX, AS/400 or all environment you want.
  16.  
  17. How To use:
  18. -----------
  19. Usage: java portScanner [-ip <ip>] [options]
  20.  
  21. <options>
  22.    -fromip <ip>
  23.    -toip <ip>
  24.    -fromport <nPort>
  25.    -toport <nPort>
  26.    -portfile <cFile>
  27.    -thread <nThread>
  28.    -log
  29.    -timeout <nTime>
  30.  
  31. -fromip <ip>
  32.  
  33. Is possible to specifie a starting address to scan.
  34. ex.
  35. -fromip 194.168.0.1
  36. -fromip localhost
  37.  
  38.  
  39. -toip <ip>
  40.  
  41. Is possible to specifie an ending address to scan.
  42. ex.
  43. -toip 194.168.0.1
  44. -toip localhost
  45.  
  46.  
  47. -toport <nPort>
  48.  
  49. Is possible to specifie an ending port to scan.
  50. ex.
  51. -toport 1024
  52. -toport 127
  53.  
  54.  
  55. -fromport <nPort>
  56.  
  57. Is possible to specifie a starting port to scan.
  58. ex.
  59. -fromport 1
  60. -fromport 0
  61.  
  62.  
  63. -portfile <cFile>
  64.  
  65. Is possible to specifie a file with port information
  66. ex.
  67. -portfile scanner.lst
  68. -portfile trojans.lst
  69.  
  70.  
  71. -thread <nThread>
  72.  
  73. Is possible to specifie the max number o thread to create
  74. ex.
  75. -thread 90
  76. -thread 10
  77.  
  78.  
  79. -log
  80.  
  81. Is possible to specifie to the scanner to display a log of execution
  82. ex.
  83. -log
  84.  
  85.  
  86. -timeout <nTime>
  87.  
  88. Is possibile specifie the timeout that scanner must use for each port
  89.  
  90.  
  91. Example of use:
  92. java portScanner -ip 194.168.0.1 -fromport 1 -portfile trojans.lst -thread 90
  93.  
  94.  
  95. Thanks To:
  96. ----------
  97. Rob Keir
  98.  
  99. I have get Superscan from his homepage
  100.  
  101. http://members.home.com/rkeir/software.html
  102.  
  103. and I have put inside this portscanner the portlist file that I have found in
  104. Superscan.
  105. I think that, if you have Windows environment, Superscan is the best program
  106. you can get for a complete scan og your network.
  107.  
  108.  
  109. Update:
  110. -------
  111.  
  112. You may find the new version of Java PortScanner at:
  113.  
  114. http://www.infomedia.it/artic/Baccan
  115.  
  116. Please e-mail any comments, suggestions, or ideas to Matteo Baccan at:
  117.  
  118. baccan@infomedia.it
  119.  
  120. History
  121. -------
  122. 0.10
  123.  
  124. First public release
  125.  
  126. 0.11
  127.  
  128. Add socket timeout.
  129. Display of scan parameter before scan start.
  130.